home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
The Arsenal Files 1
/
The Arsenal Files (Arsenal Computer).ISO
/
telecom
/
voixel10.lha
/
VOIXEL
/
VOIXELDA.REX
< prev
next >
Wrap
OS/2 REXX Batch file
|
1993-12-22
|
550b
|
22 lines
/* DataScript for VoiXEL V1.00 */
/* Start BBS or somewhat */
/* This program must exit after loggoff */
/* This script will start Term and */
/* execute VoiXEL:VoiXELminiBBS.rexx */
/* Be sure that Term's settings are correct */
options results
ADDRESS COMMAND 'VoiXEL:VoiXELwaitforport -q TERM'
if RC = 0 then
do
exit /* exit if Term already is running */
/* Can't initialize the serial port correct then.. */
end
else
do
ADDRESS COMMAND 'Term:term SYNC STARTUP VoiXEL:VoiXELminiBBS.rexx'
end
exit